home *** CD-ROM | disk | FTP | other *** search
- # Net Axis PPP and SLIP login script
- # Copyright 1995 Quarterdeck Office Systems
- # 5-9-95 CEL
-
- #define the variables we will need
-
- STRING username
- STRING password
- STRING framing
- STRING IPAddress
-
- # uncomment for debugging
- # TRACE ON
-
- # reset maximum login timeout.
-
- SetTimeout 90
-
- CfgGetValue "Username" username
-
- IF result = 0 THEN
- GetInput "Enter your user name" username
- IF result = 0 THEN
- PRINT "Warning, no username entered"
- ELSE
- PRINT "Username set to ["; username; "]"
- ENDIF
- ENDIF
-
- # get password from access method
- # if the Password field is empty, prompt the user for it.
- CfgGetValue "Password" password
- IF result = 0 THEN
- GetPassword "Enter your password" password
- IF result = 0 THEN
- PRINT "Warning, no password entered"
- ELSE
- # NOTE: Don't print password.
- PRINT "Password set."
- ENDIF
- ENDIF
-
- # get framing layer (MPPPP, MPSLIP)
- # abort with an error if we can't read the Framing setting
- CfgGetValue "Framing" framing
- IF result = 0 THEN
- ABORT "Can't read 'Framing' setting from qdeck.ini"
- ENDIF
-
- CommWaitFor "Login:" # wait for login prompt
- IF framing = "MPSLIP" THEN
- CommSend "S"
- ELSE
- CommSend "P"
- ENDIF
-
- CommSend username # send user name
- CommSend "%r" # send carriage return
-
- CommWaitFor "Password:" # wait for password prompt
- CommSend password # send password
- CommSend "%r" # send carriage return
-
- IF framing = "MPSLIP" THEN # if SLIP, we need to get the IP address
- PRINT "%rGetting IP address for SLIP"
- CommWaitFor "Your IP Address is" # wait for string that precedes the reported IP address
- CommReadIPAddr IPAddress # IP address should be next word
- # store the IP address
- CfgSetValue "IPAddress" IPaddress
- PRINT "%rIP Address set to ["; IPAddress; "]"
- ENDIF # end of SLIP logic
-
- END
-